home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Freeware / Programare / bluej / bluejsetup-200.exe / {app} / lib / swedish / templates / method.tmpl < prev    next >
Encoding:
Text File  |  2004-09-15  |  225 b   |  13 lines

  1. /**
  2.  * An example of a method - replace this comment with your own
  3.  *
  4.  * @param  y   a sample parameter for a method
  5.  * @return     the sum of x and y
  6.  */
  7. public int sampleMethod(int y)
  8. {
  9.     // put your code here
  10.     return y;
  11. }
  12.  
  13.